net/http.http2ClientConn.maxConcurrentStreams (field)
7 uses
net/http (current package)
h2_bundle.go#L7412: maxConcurrentStreams uint32
h2_bundle.go#L7831: maxConcurrentStreams: http2initialMaxConcurrentStreams, // "infinite", per spec. Use a smaller value until we have received server settings.
h2_bundle.go#L8015: maxConcurrent := cc.maxConcurrentStreams
h2_bundle.go#L8058: maxConcurrentOkay = int64(len(cc.streams)+cc.streamsReserved+1) <= int64(cc.maxConcurrentStreams)
h2_bundle.go#L8693: if int64(len(cc.streams)) < int64(cc.maxConcurrentStreams) {
h2_bundle.go#L9914: cc.maxConcurrentStreams = s.Val
h2_bundle.go#L9955: cc.maxConcurrentStreams = http2defaultMaxConcurrentStreams
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |